From 492901d7e132058f1dd24cc1e260d86b57243660 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=89tienne=20Mollier?= Date: Wed, 18 Feb 2026 21:21:56 +0100 Subject: [PATCH] skip-bigendian-roundtrip-failure.patch: new: skip test failure on s390x. The correction is work in progress upstream. --- debian/patches/series | 1 + .../skip-bigendian-roundtrip-failure.patch | 26 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 debian/patches/skip-bigendian-roundtrip-failure.patch diff --git a/debian/patches/series b/debian/patches/series index 8634d570..cbb0b1ed 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -2,3 +2,4 @@ #03_datadic_install.patch 07_dont_export_all_executables.patch remove_version.patch +skip-bigendian-roundtrip-failure.patch diff --git a/debian/patches/skip-bigendian-roundtrip-failure.patch b/debian/patches/skip-bigendian-roundtrip-failure.patch new file mode 100644 index 00000000..ba03d389 --- /dev/null +++ b/debian/patches/skip-bigendian-roundtrip-failure.patch @@ -0,0 +1,26 @@ +Description: skip test failure on big endian systems. + The issue is known upstream and supposed to be fixed in an upcoming + version. +Author: Étienne Mollier +Bug: https://lists.debian.org/debian-med/2026/02/msg00018.html +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1127756#25 +Forwarded: not-needed. +Last-Update: 2026-02-17 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- dcmtk.orig/dcmect/tests/t_roundtrip.cc ++++ dcmtk/dcmect/tests/t_roundtrip.cc +@@ -94,6 +94,13 @@ + return; + } + ++ /* Skip that particular test on big endian due to know issue in ++ * version 3.7.0. This is going to be fixed in a future version. ++ */ ++ if (gLocalByteOrder != EBO_LittleEndian) { ++ return; ++ } ++ + // Creation + EctEnhancedCT* ct = create(); + configureIOD(ct); -- 2.30.2